home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000139_news@columbia.edu_Mon Jan 9 13:55:38 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07527
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 9 Jan 1995 08:55:44 -0500
  3. Received: by apakabar.cc.columbia.edu id AA01914
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 9 Jan 1995 08:55:42 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: 2 questions
  9. Date: 9 Jan 1995 13:55:38 GMT
  10. Organization: Columbia University
  11. Lines: 74
  12. Message-Id: <3erf8q$1rl@apakabar.cc.columbia.edu>
  13. References: <3eqjo6$p9k@bingnet1.cc.binghamton.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Keywords: Initialization, Telnet
  16. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17.  
  18. In article <3eqjo6$p9k@bingnet1.cc.binghamton.edu>,
  19.  <br00031@bingsuns.cc.binghamton.edu> wrote:
  20. >I use ms Kermit to connect via telephone modem to my university Suns.
  21. >  The suns uses
  22. >c-kermit (about 2 versions back I think).
  23. >1.  Every time I do file transfers I must reset several variables in
  24. >c-kermit; flow control, windows, blocks etc..  Is it possible for me
  25. >to have these commands as a script or macro in my home directory.
  26. >
  27. Yes, all of the above, as explained in the manual, "Using C-Kermit".
  28. The recommended method is to install the standard C-Kermit initialization
  29. file, .kermrc, in your home directory, and then create a .mykermrc
  30. file, also in your home directory, containing the desired customization
  31. commands.  For those who don't like the standard .kermrc file (which
  32. sets up such items as your services directory, dialing directory, etc),
  33. just make a .kermrc file.
  34.  
  35. >How would I tell c-kermit to use that script.?
  36. >
  37. See above.  You can also tell C-Kermit to use any file at all as its
  38. initialization file, using the -y command-line option:
  39.  
  40.   kermit -y filename
  41.  
  42. And at any time C-Kermit is showing its prompt, you can tell it to execute
  43. commands from a file:
  44.  
  45.   C-Kermit> take filename
  46.  
  47. And you can define macros and execute them like so:
  48.  
  49.   C-Kermit> define fast set rec packet-length 2000, set window 4
  50.   C-Kermit> fast
  51.   
  52. And you can put the macro definitions in your initialization file or
  53. any other file that you can "take".
  54.  
  55. All of this is explained in the manual.
  56.  
  57. >2.  It has been suggested in the past that the telnet capabilites of
  58. >kermit are superior to the normal telnet.  Is it possible to use those
  59. >telnet capabilties with my modem connection. I mean can I put c-kermit
  60. >into Server mode and use its telnet.   Is there any possible benifit
  61. >to gained by doing this over the normal telnet capabilites that are on
  62. >the Unix system?
  63. >
  64. You mean, after dialing up to your Unix system, you want to know why you
  65. might want to use C-Kermit instead of telnet to connect to another system
  66. on the Internet?  The advantages include:
  67.  
  68.  . Kermit is more user-friendly ("help", "?", command and filename
  69.    completion, etc).
  70.  
  71.  . The telnet implementation works in some cases where regular
  72.    telnet does not.
  73.  
  74.  . Kermit has scripting (automation) capability; telnet does not.
  75.  
  76.  . Kermit has (in the UNIX version, a limited form of) key mapping;
  77.    telnet doesn't.
  78.  
  79.  . Kermit can convert among many different character sets, telnet can't.
  80.  
  81.  . Kermit has session logging, telnet doesn't.
  82.  
  83.  . Kermit can make 8-bit telnet connections; some telnet clients can't.
  84.  
  85.  . Kermit can transfer files over a telnet connection, telnet can't.
  86.  
  87. The last point is important in the increasing number of cases where the
  88. telnetted-to host or service does not provide ftp; e.g. Internet BBSs,
  89. or Internet versions of commercial dialup services.
  90.  
  91. - Frank